home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E52.CC < prev    next >
C/C++ Source or Header  |  1991-04-28  |  234b  |  18 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_52()
  5. {
  6.   if (modrm > 0277)
  7.   {
  8.     r_mov(st(), st(modrm&7));
  9.   }
  10.   else
  11.   {
  12.     // fst m64real
  13.     if (empty())
  14.       return;
  15.     r_mov(st(), (double *)get_modrm());
  16.   }
  17. }
  18.